home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 441 / dlibs12 / abort.c next >
C/C++ Source or Header  |  1990-11-23  |  125b  |  9 lines

  1. #include <stdio.h>
  2.  
  3. void abort()
  4.     {
  5.     fputs("Abnormal program termination\n", stderr);
  6.     fflush(stderr);
  7.     _exit(3);
  8.     }
  9.